Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: FFmpeg/FFV1
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 5580818c24c5
Choose a base ref
...
head repository: FFmpeg/FFV1
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 0036f2f04ce4
Choose a head ref

Commits on Jun 1, 2015

  1. convert ffv1.lyx to markdown

    ablwr authored and dericed committed Jun 1, 2015
    Copy the full SHA
    bba8cca View commit details

Commits on Jul 10, 2015

  1. Copy the full SHA
    20f8948 View commit details
  2. Copy the full SHA
    1986fd6 View commit details
  3. add README

    dericed committed Jul 10, 2015
    Copy the full SHA
    2059c14 View commit details
  4. add Makefile

    dericed committed Jul 10, 2015
    Copy the full SHA
    e0c16fa View commit details
  5. add outputs to .gitignore

    dericed committed Jul 10, 2015
    Copy the full SHA
    7834f45 View commit details
  6. remove empty line

    dericed committed Jul 10, 2015
    Copy the full SHA
    1291e6c View commit details
  7. Copy the full SHA
    d25fb39 View commit details

Commits on Jul 18, 2015

  1. clarify JPEGLS reference

    dericed committed Jul 18, 2015
    Copy the full SHA
    0c2ab02 View commit details
  2. Copy the full SHA
    833355a View commit details
  3. Copy the full SHA
    399000b View commit details
  4. Copy the full SHA
    904d737 View commit details
  5. typo in function name

    dericed committed Jul 18, 2015
    Copy the full SHA
    bf19133 View commit details
  6. Copy the full SHA
    3665a3b View commit details
  7. Copy the full SHA
    56942a6 View commit details
  8. consistent spacing

    dericed committed Jul 18, 2015
    Copy the full SHA
    f5eed1b View commit details
  9. let pandoc generate to toc

    dericed committed Jul 18, 2015
    Copy the full SHA
    64f6435 View commit details
  10. Copy the full SHA
    701edaf View commit details
  11. Copy the full SHA
    38c50dd View commit details
  12. Copy the full SHA
    7729199 View commit details
  13. Copy the full SHA
    f85ce05 View commit details

Commits on Jul 20, 2015

  1. Copy the full SHA
    1272d20 View commit details
  2. Copy the full SHA
    a289aa6 View commit details
  3. Copy the full SHA
    07bf8ed View commit details
  4. Copy the full SHA
    0339ffa View commit details
  5. escape pipes in code table

    dericed committed Jul 20, 2015
    Copy the full SHA
    85b5197 View commit details
  6. Copy the full SHA
    0036f2f View commit details
Showing with 900 additions and 9,364 deletions.
  1. +2 −0 .gitignore
  2. +16 −0 Makefile
  3. +9 −0 README.md
  4. +0 −9,364 ffv1.lyx
  5. +873 −0 ffv1.md
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
*.html
*.pdf
16 changes: 16 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
SRC=ffv1.md
PDF=$(SRC:.md=.pdf)
HTML=$(SRC:.md=.html)

$(info PDF and HTML rendering has been tested with pandoc version 1.13.2.1, some older versions are known to produce very poor output, please ensure your pandoc is recent enough.)

all: ffv1.html ffv1.pdf

ffv1.html: ffv1.md
pandoc --toc --mathml -s --number-sections -c "http://elyxer.nongnu.org/lyx.css" -o "$@" "$<"

ffv1.pdf: ffv1.md
pandoc --toc -s --number-sections --latex-engine=xelatex -V geometry:margin=1in -o "$@" "$<"

clean:
rm -f ffv1.pdf ffv1.html
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# FFV1 Specification

## Introduction

This repository manages the development of specification documents for FFV1, a lossless intra-frame video codec. Information within this repository should be considered in draft form. The current authoritative specificiation for FFV1 may be found at http://www.ffmpeg.org/~michael/ffv1.html.

## Formatting

The FFV1 specification was iniitally written in lyx. In July 2015 the formatting of the specification was transitioned to Markdown. Propering PDF and HTML rendering has been tested with requires pandoc version 1.13.2.1 and higher.
Loading